home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.lha / SmallEiffel / lib_se / precursor_name.e < prev    next >
Text File  |  1998-12-22  |  2KB  |  91 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr 
  4. --                       http://www.loria.fr/SmallEiffel
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it 
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later 
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License 
  11. -- for  more  details.  You  should  have  received a copy of the GNU General 
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class PRECURSOR_NAME
  17.    --   
  18.    -- The name of a Precursor RUN_FEATURE (RUN_FEATURE_10 | RUN_FEATURE_11).
  19.    --
  20.  
  21. inherit FEATURE_NAME;
  22.  
  23. creation {E_PRECURSOR} refer_to
  24.  
  25. feature {NONE}
  26.  
  27.    enclosing: FEATURE_NAME;
  28.      -- Name of the enclosing RUN_FEATURE which contains the 
  29.      -- Precursor call.
  30.    
  31.    to_key: STRING;
  32.  
  33. feature {NONE}
  34.  
  35.    refer_to(id: INTEGER; e: like enclosing) is
  36.      -- Where `id' is the base class id of the Precursor routine.
  37.       require
  38.      e /= Void
  39.       do
  40.      enclosing := e;
  41.      to_key := unique_string.for_precursor(id,e.to_key);
  42.       ensure
  43.      enclosing = e;
  44.      to_string = unique_string.item(to_string)
  45.       end;
  46.  
  47. feature 
  48.  
  49.    to_string: STRING is
  50.       do
  51.      Result := enclosing.to_string;
  52.       end;
  53.  
  54.    start_position: POSITION is
  55.       do
  56.      Result := enclosing.start_position;
  57.       end;
  58.    
  59.    is_frozen: BOOLEAN is
  60.       do
  61.      Result := enclosing.is_frozen;
  62.       end;
  63.    
  64.    declaration_in(str: STRING) is
  65.       do
  66.       end;
  67.  
  68.    pretty_print is
  69.       do
  70.      fmt.put_string(us_precursor);
  71.       end;
  72.  
  73.    declaration_pretty_print is
  74.       do
  75.       end;
  76.  
  77.    short is
  78.       do
  79.       end;
  80.  
  81. feature {RUN_FEATURE,FEATURE_NAME}
  82.  
  83.    put_cpp_tag is
  84.       do
  85.      cpp.put_string(us_precursor);
  86.      cpp.put_character(' ');
  87.       end;
  88.  
  89. end
  90.  
  91.